home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / kill-the-dragons.swf / scripts / DefineButton2_495 / BUTTONCONDACTION on(release, keyPress Enter).as
Encoding:
Text File  |  2011-12-21  |  501 b   |  17 lines

  1. on(release, keyPress "<Enter>"){
  2.    if(_root.score > 5000)
  3.    {
  4.       _root.Poster.name = newName;
  5.       _root.Poster.company = newCompany;
  6.       _root.Poster.email = newEmail;
  7.       _root.Poster.score = _root.score;
  8.       x = new LoadVars();
  9.       x.pgame = "killthedragons";
  10.       x.pname = newName.toLowerCase();
  11.       x.pscore = int(_root.score);
  12.       x.ppass = "xersfdfsd";
  13.       x.sendAndLoad("http://www.freegamesjungle.com/scores/score.php",x,"POST");
  14.    }
  15.    _root.play();
  16. }
  17.